1.输入自己的用户名和邮箱(为注册GITHUB账号时的用户名和邮箱)
$ git config --global user.name "coliyin"
$ git config --global user.email "coliyin@163.com"
2.建立本地仓库
$ git init
3.执行指令将文件添加到本地仓库:
$ git add .
4.输入本次的提交说明
$ git commit -m "shuoming"
5.关联github仓库
$ git remote add origin https://github.com/zsstaria/c...
如果出现错误:fatal: remote origin already exists,则执行以下语句:
$ git remote rm origin
再重新执行
$ git remote add origin https://github.com/zsstaria/c...
6.最后执行命令:
$ git push origin master
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。